home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / dev / e / capus2.lha / capus2 / WhatView / Sources / WVPrefs.i < prev    next >
Encoding:
Text File  |  1994-10-15  |  1.2 KB  |  45 lines

  1.    include "exec/types.i"
  2.    include "exec/nodes.i"
  3.  
  4. ID_WVPR  EQU  $57565052
  5. ID_WVAC  EQU  $57564143
  6. ID_DEFA  EQU  $44454641
  7.  
  8.    STRUCTURE WVBASE,0
  9.       LONG   wv_AdrIdList
  10.       LONG   wv_AdrActionList
  11.       LONG   wv_AdrEmptyList
  12.       LABEL WVBASE_SIZE
  13.  
  14.    STRUCTURE ACTIONNODE,0
  15.       STRUCT    ac_Node,LN_SIZE     * node.name content the idstring of the whatis.library *
  16.       WORD      ac_ExecType         * exectype MODE_WB or MODE_CLI *
  17.       LONG      ac_Command          * String *
  18.       LONG      ac_CurrentDir       * String *
  19.       LONG      ac_Stack
  20.       LONG      ac_Priority
  21.       LONG      ac_NumArg
  22.       LONG      ac_usesubtype
  23.       STRUCT    ac_ArgList,160
  24.       LONG      ac_cmd
  25.       LABEL ACTIONNODE_SIZE
  26.  
  27. MODE_WB   equ 0
  28. MODE_CLI  equ 1
  29.  
  30.    STRUCTURE WVARG,0
  31.       STRUCT wa_Node,LN_SIZE        * node.name content the filename *
  32.       LONG   wa_Lock                * the lock of the filename *
  33.       LONG   wa_Size                * the size of the filename *
  34.       LONG   wa_Date                * the date of the filename *
  35.       LONG   wa_IdString            * the idstring of the filename *
  36.       LABEL WVARG_SIZE
  37.  
  38.    STRUCTURE WVMSG,0
  39.       STRUCT wm_Msg,20
  40.       LONG   wm_Name
  41.       LONG   wm_Lock
  42.       LABEL WVMSG_SIZE
  43.  
  44.  
  45.